//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','Ameris Bank Amphitheatre','Alpharetta, GA','Friday','7/25/2025','4:10 PM','6968004','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-25-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','PNC Music Pavilion - Charlotte','Charlotte, NC','Saturday','7/26/2025','4:00 PM','6968005','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-26-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','Coastal Credit Union Music Park at Walnut Creek','Raleigh, NC','Sunday','7/27/2025','3:45 PM','6968006','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-27-2025'],['Charles Wesley Godwin','Webster Hall','New York, NY','Saturday','8/9/2025','8:00 PM','7171461','Charles-Wesley-Godwin-8-9-2025'],['Charles Wesley Godwin','Kee To Bala','Bala, Canada','Wednesday','8/13/2025','8:00 PM','7188721','Charles-Wesley-Godwin-8-13-2025'],['Charles Wesley Godwin','Kee To Bala','Bala, Canada','Thursday','8/14/2025','8:00 PM','7171995','Charles-Wesley-Godwin-8-14-2025'],['LASSO: Bailey Zimmerman, Sheryl Crow, Jelly Roll & Riley Green - 2 Day Pass','Parc Jean-Drapeau','Montreal, Canada','Friday','8/15/2025','TBD','6643395','LASSO--Bailey-Zimmerman--Sheryl-Crow--Jelly-Roll---Riley-Green---2-Day-Pass-8-15-2025'],['LASSO: Bailey Zimmerman, Sheryl Crow, Shaboozey & Charles Wesley Godwin - Friday','Parc Jean-Drapeau','Montreal, Canada','Friday','8/15/2025','1:00 PM','6883068','LASSO--Bailey-Zimmerman--Sheryl-Crow--Shaboozey---Charles-Wesley-Godwin---Friday-8-15-2025'],['Charles Wesley Godwin','John T. Floore Country Store','Helotes, TX','Thursday','9/18/2025','6:45 PM','7171406','Charles-Wesley-Godwin-9-18-2025'],['Charles Wesley Godwin','White Oak Music Hall - Lawn','Houston, TX','Friday','9/19/2025','6:00 PM','7171479','Charles-Wesley-Godwin-9-19-2025']],'"Charles Wesley Godwin"','https://www.ticketnetwork.com');